home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / srcbkvt.zip / 20_20_4.ZIP / VMONITOR.DPR < prev    next >
Text File  |  1996-04-02  |  192b  |  14 lines

  1. program vmonitor;
  2.  
  3. uses
  4.   Forms,
  5.   vmonfrm in 'vmonfrm.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.